home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webnews.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  68 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11732);
  10.  script_bugtraq_id(4124);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-0290");
  13.  
  14.  
  15.  name["english"] = "Webnews.exe vulnerability";
  16.  name["francais"] = "Webnews.exe vulnerability";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "The Webnews.exe exists on this webserver.  
  20. Some versions of this file are vulnerable to remote exploit.
  21.  
  22. Solution : remove it from /cgi-bin.
  23. Risk factor : High";
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Checks for the Webnews.exe file";
  29.  
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  36.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  37.  family["english"] = "CGI abuses";
  38.  family["francais"] = "Abus de CGI";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  script_dependencie("find_service.nes", "no404.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))exit(0);
  55.  
  56. flag = 0;
  57. directory = "";
  58.  
  59. foreach dir (cgi_dirs()) {
  60.    if(is_cgi_installed_ka(item:string(dir, "/Webnews.exe"), port:port)) {
  61.       flag = 1;
  62.       directory = dir;
  63.       break;
  64.    } 
  65. }
  66.  
  67. if (flag) security_hole(port);
  68.